home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / edit / thesrc20.zip / rexx.h < prev    next >
Text File  |  1995-01-26  |  2KB  |  79 lines

  1. /*
  2.  * THE - The Hessling Editor. A text editor similar to VM/CMS xedit.
  3.  * Copyright (C) 1991-1995 Mark Hessling
  4.  *
  5.  * This program is free software; you can redistribute it and/or
  6.  * modify it under the terms of the GNU General Public License as
  7.  * published by the Free Software Foundation; either version 2 of
  8.  * the License, or any later version.
  9.  *
  10.  * This program is distributed in the hope that it will be useful,
  11.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13.  * General Public License for more details.
  14.  *
  15.  * You should have received a copy of the GNU General Public License
  16.  * along with this program; if not, write to:
  17.  *
  18.  *    The Free Software Foundation, Inc.
  19.  *    675 Mass Ave,
  20.  *    Cambridge, MA 02139 USA.
  21.  *
  22.  *
  23.  * If you make modifications to this software that you feel increases
  24.  * it usefulness for the rest of the community, please email the
  25.  * changes, enhancements, bug fixes as well as any and all ideas to me.
  26.  * This software is going to be maintained and enhanced as deemed
  27.  * necessary by the community.
  28.  *
  29.  * Mark Hessling                     email: M.Hessling@gu.edu.au
  30.  * 36 David Road                     Phone: +61 7 849 7731
  31.  * Holland Park                      Fax:   +61 7 875 5314
  32.  * QLD 4121
  33.  * Australia
  34.  */
  35.  
  36. /*
  37. $Id: REXX.H 2.0 1995/01/26 16:34:39 MH Release MH $
  38. */
  39.  
  40. #if defined(OS2)
  41. #   if !defined(EMX)
  42. #      include <rexxsaa.h>
  43. #   endif
  44. #endif
  45.  
  46. #if defined(UNIX)
  47. #  if !defined(NOREXX)
  48. #     include "rexxsaa.h"
  49. #  endif
  50. #endif
  51.  
  52. #if defined(DOS)
  53. #   if defined(USE_QUERCUS)
  54. #     include "regina.h"
  55. #   endif
  56. #   if defined(USE_REGINA)
  57. #     include "rexxsaa.h"
  58. #   endif
  59. #endif
  60.  
  61. #if defined(MSWIN)
  62. #  if !defined(NOREXX)
  63. typedef signed short int SHORT;
  64. typedef char CHAR;
  65. typedef CHAR *PCH;
  66. #     include <windows.h>
  67. #     include "wrexx.h"
  68. #     define PSZ       LPCSTR
  69. #     define ULONG     DWORD
  70. #     define PUSHORT   LPWORD
  71. #     define PFN       FARPROC
  72. #     define PUCHAR    LPBYTE
  73. #  endif
  74. #endif
  75.  
  76. #if defined(NOREXX)
  77. #   include "rexxfill.h"
  78. #endif
  79.